home *** CD-ROM | disk | FTP | other *** search
/ How Many Bugs in a Box / How Many Bugs in a Box.cdr / bugs / juicebar / 00793.ls < prev    next >
Encoding:
Text File  |  1995-04-07  |  241 b   |  14 lines

  1. on mouseUp
  2.   global noodle
  3.   set noodle to noodle + 1
  4.   if (noodle mod 3) = 0 then
  5.     go("Noodle.Pos3a")
  6.   end if
  7.   if (noodle mod 3) = 1 then
  8.     go("Noodle.Pos3b")
  9.   end if
  10.   if (noodle mod 3) = 2 then
  11.     go("Noodle.Pos3c")
  12.   end if
  13. end
  14.